home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snpd9611.zip / MAKEFILE.EMX < prev    next >
Text File  |  1996-11-24  |  363b  |  21 lines

  1. # +++Date last modified: 03-Oct-1996
  2.  
  3. # Makefile for EMX GNU C/C++ for OS/2 & DOS 0.9b
  4.  
  5. all: qmenup.exe
  6.  
  7. COPTS=-O2
  8.  
  9. .c.o:
  10.   gcc $(COPTS) -s -Wall -c $<
  11.  
  12. objs=qmenu.o    \
  13.      vidmgr.o   \
  14.      vmgremx.o  \
  15.      vioimage.o \
  16.      opsys.o
  17.  
  18. qmenup.exe: $(objs)
  19.   gcc $(COPTS) -s -Wall -o qmenup.exe $(objs) -lvideo
  20.   emxbind -aq qmenup.exe -acm
  21.